d056d8fcab3ec192d6890a154f6bed2765229f78,src/core/org/terrier/structures/postings/integer/BlockIntegerCodingIterablePosting.java,BlockIntegerCodingIterablePosting,decompress,#,117

Before Change


		
		if (hasBlocks > 0)
		{
			if (hasBlocks > 1) {
				tfsCodec.decompress(input, bfs, chunkSize);
			}
			//System.err.println("sumBFS="+StaTools.sum(tfs));
			

After Change


		
		if (hasBlocks > 0)
		{
			tfsCodec.decompress(input, bfs, chunkSize);
			int numBlocks = 0;
			for (int i = 0; i < chunkSize; i++) numBlocks += bfs[i];